3c46aa03c8f54ecb00995aa01388c5cd61b15222,engine/src/org/pentaho/di/trans/steps/filterrows/FilterRowsMeta.java,FilterRowsMeta,readRep,#Repository#IMetaStore#ObjectId#List#,205
Before Change
targetStreams.get( 0 ).setSubject( rep.getStepAttributeString( id_step, "send_true_to" ) );
targetStreams.get( 1 ).setSubject( rep.getStepAttributeString( id_step, "send_false_to" ) );
this.trueStepname = targetStreams.get( 0 ).getStepname();
this.falseStepname = targetStreams.get( 1 ).getStepname();
condition = rep.loadConditionFromStepAttribute( id_step, "id_condition" );
After Change
String trueStepName = rep.getStepAttributeString( id_step, "send_true_to" );
String falseStepName = rep.getStepAttributeString( id_step, "send_false_to" );
targetStreams.get( 0 ).setSubject( trueStepName );
targetStreams.get( 1 ).setSubject( falseStepName );
this.trueStepname = trueStepName;